home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.8 KB | 86 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PartInfo.fr
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWRESFIL_K
- #include "FWResFil.k"
- #endif
-
- #ifndef FWPART_FR
- #include "FWPart.fr"
- #endif
-
- #ifndef DEFINES_K
- #include "Defines.k"
- #endif
-
- #ifndef BINDING_K
- #include "Binding.k"
- #endif
-
- #ifndef SLGCONST_K
- #include "SLGConst.k"
- #endif
-
- #ifndef FWVIEWS_FR
- #include "FWViews.fr"
- #endif
-
- //----------------------------------------------------------------------------------------
- // PartInfo Resource
- //----------------------------------------------------------------------------------------
-
- resource FW_RPartInfo(kPartInfoID)
- {
- // ----- Icon ID
- kViewAsIconID,
-
- // ----- Part Name
- kODFFormEditorUserString,
-
- // ----- PartKind
- kODFFormKind
- };
-
- //----------------------------------------------------------------------------------------
- // About Resource
- //----------------------------------------------------------------------------------------
-
- resource FW_RAbout(kAbout)
- {
- // ----- Icon ID
- kAboutIconID,
- // ----- Part Name
- FW_RStyledText
- (
- FW_FIX(18),
- FW_kBold,
- "times",
- "ODFForm"
- ),
- // ----- Version Number
- FW_RStyledText
- (
- FW_FIX(9),
- FW_kPlain,
- "geneva",
- "ODF Release 1"
- ),
- // ----- Credits
- FW_RStyledText
- (
- FW_FIX(9),
- FW_kPlain,
- "geneva",
- "ODFForm demonstrates the ODF View System. It shows how to use various Views, "
- "Controls, and Dialog classes, and how to respond to their notifications."
- "It contains an example of a scrolling edit-field with Undo/Redo support. "
- "It also demonstrates the use of 'behaviors' to customize event handling.\r\r"
- "Written by the ODF Team.\r"
- )
- };